home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / util / wb / mui_calc125.lha / mui_calc.mrx < prev    next >
Text File  |  1994-01-25  |  481b  |  33 lines

  1. /*
  2. ** This script shows how to obtain
  3. ** general information on an application.
  4. */
  5.  
  6. options results
  7. address 'MUICALC.1'
  8.  
  9. 'info title'
  10. title = result
  11.  
  12. 'info author'
  13. author = result
  14.  
  15. 'info copyright'
  16. copyright = result
  17.  
  18. 'info description'
  19. description = result
  20.  
  21. 'info version'
  22. version = result
  23.  
  24. 'info base'
  25. base = result
  26.  
  27. say "Title......: "title
  28. say "Author.....: "author
  29. say "Copyright..: "copyright
  30. say "Description: "description
  31. say "Version....: "version
  32. say "Basename...: "base
  33.